home *** CD-ROM | disk | FTP | other *** search
/ Night Owl 6 / Night Owl's Shareware - PDSI-006 - Night Owl Corp (1990).iso / 023a / cplus217.zip / CBACKUP.BAT < prev    next >
DOS Batch File  |  1990-09-25  |  494b  |  17 lines

  1. echo off
  2. cls
  3. echo This batch file will backup the database using an archive program
  4. echo then copy the compressed file to a floppy.  You may edit this
  5. echo file if you wish to use a compression program other than PKZIP
  6. echo.
  7. echo Press CTRL-C to break now or 
  8. pause
  9. echo Now Archiving %1 database ... please standby
  10. del %1.zip
  11. pkzip -es -a %1.zip %1.dt %1.hdr %1.nx? %1.not %1.nt0
  12. echo.
  13. echo Now place a formatted disk into drive A:
  14. pause
  15. copy %1.zip a:
  16. echo Backup completed!
  17.